SonarSource Rules
  • Products

    In-IDE

    Code Quality and Security in your IDE with SonarQube Ide

    IDE extension that lets you fix coding issues before they exist!

    Discover SonarQube for IDE

    SaaS

    Code Quality and Security in the cloud with SonarQube Cloud

    Setup is effortless and analysis is automatic for most languages

    Discover SonarQube Cloud

    Self-Hosted

    Code Quality and Security Self-Hosted with SonarQube Server

    Fast, accurate analysis; enterprise scalability

    Discover SonarQube Server
  • SecretsSecrets
  • ABAPABAP
  • AnsibleAnsible
  • ApexApex
  • AzureResourceManagerAzureResourceManager
  • CC
  • C#C#
  • C++C++
  • CloudFormationCloudFormation
  • COBOLCOBOL
  • CSSCSS
  • DartDart
  • DockerDocker
  • FlexFlex
  • GitHub ActionsGitHub Actions
  • GoGo
  • HTMLHTML
  • JavaJava
  • JavaScriptJavaScript
  • JSONJSON
  • JCLJCL
  • KotlinKotlin
  • KubernetesKubernetes
  • Objective CObjective C
  • PHPPHP
  • PL/IPL/I
  • PL/SQLPL/SQL
  • PythonPython
  • RPGRPG
  • RubyRuby
  • RustRust
  • ScalaScala
  • ShellShell
  • SwiftSwift
  • TerraformTerraform
  • TextText
  • TypeScriptTypeScript
  • T-SQLT-SQL
  • VB.NETVB.NET
  • VB6VB6
  • XMLXML
  • YAMLYAML
XML

XML static code analysis

Unique rules to find Bugs and Code Smells in your XML code

  • All rules 37
  • Vulnerability7
  • Bug5
  • Security Hotspot9
  • Code Smell16
 
Tags
    Impact
      Clean code attribute
        1. Defining a single permission for read and write access of content providers is security-sensitive

           Security Hotspot
        2. Allowing application backups is security-sensitive

           Security Hotspot
        3. Requesting dangerous Android permissions is security-sensitive

           Security Hotspot
        4. Using clear-text protocols is security-sensitive

           Security Hotspot
        5. Receiving intents is security-sensitive

           Security Hotspot
        6. Having a permissive Cross-Origin Resource Sharing policy is security-sensitive

           Security Hotspot
        7. Delivering code in production with debug features activated is security-sensitive

           Security Hotspot
        8. Creating cookies without the "HttpOnly" flag is security-sensitive

           Security Hotspot
        9. Hard-coded credentials are security-sensitive

           Security Hotspot

        Receiving intents is security-sensitive

        intentionality - complete
        security
        Security Hotspot
        • cwe
        • android

        Android applications can receive broadcasts from the system or other applications. Receiving intents is security-sensitive. For example, it has led in the past to the following vulnerabilities:

        • CVE-2019-1677
        • CVE-2015-1275

        Receivers can be declared in the manifest or in the code to make them context-specific. If the receiver is declared in the manifest Android will start the application if it is not already running once a matching broadcast is received. The receiver is an entry point into the application.

        Other applications can send potentially malicious broadcasts, so it is important to consider broadcasts as untrusted and to limit the applications that can send broadcasts to the receiver.

        Permissions can be specified to restrict broadcasts to authorized applications. Restrictions can be enforced by both the sender and receiver of a broadcast. If permissions are specified when registering a broadcast receiver, then only broadcasters who were granted this permission can send a message to the receiver.

        This rule raises an issue when a receiver is registered without specifying any broadcast permission.

        Ask Yourself Whether

        • The data extracted from intents is not sanitized.
        • Intents broadcast is not restricted.

        There is a risk if you answered yes to any of those questions.

        Recommended Secure Coding Practices

        Restrict the access to broadcasted intents. See the Android documentation for more information.

        Sensitive Code Example

        <receiver android:name=".MyBroadcastReceiver" android:exported="true">  <!-- Sensitive -->
            <intent-filter>
                <action android:name="android.intent.action.AIRPLANE_MODE"/>
            </intent-filter>
        </receiver>
        

        Compliant Solution

        Enforce permissions:

        <receiver android:name=".MyBroadcastReceiver"
            android:permission="android.permission.SEND_SMS"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.AIRPLANE_MODE"/>
            </intent-filter>
        </receiver>
        

        Do not export the receiver and only receive system intents:

        <receiver android:name=".MyBroadcastReceiver" android:exported="false">
            <intent-filter>
                <action android:name="android.intent.action.AIRPLANE_MODE"/>
            </intent-filter>
        </receiver>
        

        See

        • OWASP - Mobile AppSec Verification Standard - Platform Interaction Requirements
        • OWASP - Mobile Top 10 2016 Category M1 - Improper Platform Usage
        • OWASP - Mobile Top 10 2024 Category M3 - Insecure Authentication/Authorization
        • OWASP - Mobile Top 10 2024 Category M4 - Insufficient Input/Output Validation
        • CWE - CWE-925 - Improper Verification of Intent by Broadcast Receiver
        • CWE - CWE-926 - Improper Export of Android Application Components
        • Android documentation - Broadcast Overview - Security considerations and best practices
          Available In:
        • SonarQube IdeCatch issues on the fly,
          in your IDE
        • SonarQube CloudDetect issues in your GitHub, Azure DevOps Services, Bitbucket Cloud, GitLab repositories
        • SonarQube Community BuildAnalyze code in your
          on-premise CI
          Available Since
          9.2
        • SonarQube ServerAnalyze code in your
          on-premise CI
          Developer Edition
          Available Since
          9.2

        © 2008-2025 SonarSource SA. All rights reserved.

        Privacy Policy | Cookie Policy | Terms of Use